summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/asn/omv1/SequenceOfCustomerStatusType.java
blob: 4d102aa74cdf561e35539e8b4c3e045aa83b141a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.uic.ticket.api.asn.omv1;

import java.util.Collection;

import net.gcdc.asn1.datatypes.Asn1SequenceOf;

public class SequenceOfCustomerStatusType extends Asn1SequenceOf<CustomerStatusType> {
    public SequenceOfCustomerStatusType() { super(); }
    public SequenceOfCustomerStatusType(Collection<CustomerStatusType> coll) { super(coll); }
}